@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

*{
    padding: 0px;
    margin: 0px;
  }

  body{
    width: 100%;
    height: 100%;
  }

  .nav-bar{
    margin-bottom: 40px;
    justify-content: center;
    margin-left: 300px;

  }

  .nav-bar ul{
    display: flex;
    list-style: none;
    text-align: center;
    justify-content:center;
    padding-top: 20px;
    position: relative;
  }

  .nav-bar-items{
    font-size: 20px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    padding-right: 100px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.5s ease-in-out;
  }

  .logo{
    font-size: 20px;
    font-weight: bold;
    padding-right: 100px;
    text-align: center;
    list-style: none;
    text-decoration: none;
    color: #333;
  }

  .logo:hover{
    cursor: pointer;
  }

  .nav-bar-items:hover{
    color: green;
    font-size: 30px;
    transition: all 0.5s ease-in-out;
  }

  .sign-in, .sign-up{
    position: relative;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 10px;
    background-color: green;
    cursor: pointer;
    font-weight: bold;
  }

  .sign-in{
    margin-right: 10px;
    text-align: center;

  }

  .sign-in:hover, .sign-up:hover{
    color: green;
    background-color: white;
    transition: 0.5s;
  }

  #pp{
    padding-left: 20px;
  }

  .profile-pic {
    max-width: 30px;
    max-height:30px;
    border-radius: 50%;
  }

  .fa{
    padding-left: 40px;
    font-weight: bold;
    font-size: 45px;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .fa:hover{
    color: green;
  }

  .Auctions {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    justify-content: center;
    gap: 10px;
    padding-left: -15px;
    padding-right: -15px;
  }

  #countdown {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Poppins';
  }

  #labForTB{
    margin-left: 20px;
    font-family: 'Poppins';
  }

  #textBox{
    background-color: rgba(95, 53, 53, 0.399);
    height: 25px;
    margin-bottom: 20px;
  }

  .img{
    width: 250px;
    height: 300px;
    object-fit: cover;
    background-position: center;
  }
  .img:hover{
    cursor: pointer;
  }

  
  .images {
   display: flex;
   justify-content: center;
   align-items: flex-start;
   flex-direction: column;
   text-align: center;
   box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);

  }

  .image-with-details {
   position: relative;
  }

  .auction-details {
   padding: 10px;
   margin-top: -10px;
  }

  .auction-details p {
    font-weight: bold;
    margin: 0;
    font-size: 18px;
    word-spacing: 3px;
    text-align: center;
    font-family: 'Poppins';
  }

  .auction-details h2 {
   margin-bottom: 10px;
   font-size: 30px;
   text-align: center;
   font-family: 'Open Sans', sans-serif;
  } 

  .auction-details button{
   padding: 8px 16px;
   font-size: 15px;
   font-weight: bold;
   background: linear-gradient(90deg, #35a845, #24733e);
   border: none;
   border-radius: 10px;
   color: white;
   cursor: pointer;
   justify-content: center;
   margin-top: 9px;
   margin-bottom: 20px;
   animation: button  1s linear infinite;
  }
   
@keyframes button{
  0%{background: linear-gradient(0deg, #06bb1e, #128d3b);
  }
  12%{background: linear-gradient(45deg, #06bb1e, #128d3b);
  }
  24%{background: linear-gradient(95deg, #06bb1e, #128d3b);
  }
  36%{background: linear-gradient(60deg, #06bb1e, #128d3b);
  }
  48%{background: linear-gradient(145deg, #06bb1e, #128d3b);
  }
  60%{background: linear-gradient(195deg, #06bb1e, #128d3b);
  }
  72%{background: linear-gradient(245deg, #06bb1e, #128d3b);
  }
  100%{background: linear-gradient(360deg, #06bb1e, #128d3b);
  }
}

  .foot{
    height: 5vh;
    background-color: rgb(209, 207, 207);
    text-align: center;
    justify-content:center;
    padding-top: 5px;
    padding-left: 90px;
    padding-right: 80px;
    text-decoration: none;
    color: #333;
    display: flex;
  }

  .foot-bar-lists{
    text-align: center;
    justify-content:center;
    font-size: 20px;
    padding-top: 5px;
    padding-left: 90px;
    padding-right: 80px;
    text-decoration: none;
    color: #333;
    display: flex;
  }

  .foot-bar-lists:hover{
    color: green;
    cursor: pointer;
    transition: 2s;
 
  }

  @media (max-width: 768px) {
    
    .nav-bar{
      margin-left: 250px;
      margin-bottom: 100px;
    }
    .nav-bar-items{
      padding-right: 20px;
    }
  
    .logo{
      padding-right: 0px;
      padding-left: 100px;
      padding-top: 80px;
    }
  
    .sign-in, .sign-up, .profile-pic{
      position: relative;
      top: 40px;
      right: 260px;
    }

    .Auctions{
      display: block;
      position: relative;
      left: 30%;
    }

    .images{
      width: 250px;
      margin-bottom: 20px;
    }

    .foot{
      display: block;
      height: 18vh;
    }
  }